home *** CD-ROM | disk | FTP | other *** search
/ United Public Domain Gold 2 / United Public Domain Gold 2.iso / utilities / pu649.dms / pu649.adf / Install-DFA < prev    next >
Text File  |  1994-08-15  |  26KB  |  1,167 lines

  1. ; $VER: DFA 2.0 (05.02.94)
  2. ; Script to install DFA V 2.0
  3.  
  4. (transcript "Installing the DFA - Address utility...")
  5.  
  6.     ; *************************
  7.     ; Try to uninstall DFA V1.x
  8.     ; *************************
  9.     ;
  10.     ; Notice that even parts of DFA V2.0 may be 
  11.     ; deinstalled:-)
  12.  
  13.  
  14.     ;
  15.     ; Is an old DFA (V1.x) present?
  16.     ;
  17.  
  18. (if (OR (OR (exists "ENV:DFA/DFA.prefs")
  19.             (exists "SYS:WBStartup/DFA"))
  20.         (OR (exists "Locale:Catalogs/deutsch/dfa.catalog")
  21.             (exists "Locale:Catalogs/dansk/dfa.catalog")))
  22.     (
  23.         (if (askbool
  24.             (prompt "There is an old version of DFA on "
  25.                     "your harddisk!\n\n"
  26.                     "Do you want to uninstall it?\n"
  27.             )
  28.             (help    "If you select 'YES', the old DFA "
  29.                     "and all related files, i.e. locale "
  30.                     "catalogs, preferences etc. are deleted. "
  31.                     "The address files are not touched, "
  32.                     "so you won't loose any addresses! "
  33.             )
  34.             )
  35.             (
  36.                 ;
  37.                 ; Uninstall DFA 1.x
  38.                 ;
  39.  
  40.                 (if (NOT (= (getassign "Locale") ""))
  41.                     (
  42.                         ;
  43.                         ; Delete locale catalogs
  44.                         ;
  45.  
  46.                         (working "Deleting catalog files of DFA V1.x...")
  47.  
  48.                         (run "delete Locale:Catalogs/dansk/dfa.catalog")
  49.                         (run "delete Locale:Catalogs/deutsch/dfa.catalog")
  50.                         (run "delete Locale:Catalogs/italiano/dfa.catalog")
  51.                         (run "delete Locale:Catalogs/nederlands/dfa.catalog")
  52.                         (run "delete Locale:Catalogs/suomi/dfa.catalog")
  53.                         (run "delete Locale:Catalogs/svenska/dfa.catalog")
  54.  
  55.                     )
  56.                 )
  57.  
  58.                 (if (exists "ENV:DFA/DFA.prefs")
  59.                     (
  60.                         ;
  61.                         ; Delete prefs
  62.                         ;
  63.  
  64.                         (working "Deleting preferences file of DFA V1.x...")
  65.  
  66.                         (run "delete ENV:DFA/DFA.prefs")
  67.                         (run "delete ENVARC:DFA/DFA.prefs")
  68.                     )
  69.                 )
  70.  
  71.                 (if (exists "SYS:WBStartup/DFA")
  72.                     (
  73.                         ;
  74.                         ; Delete DFA executable
  75.                         ;
  76.  
  77.                         (working "Deleting DFA V1.x executable...")
  78.  
  79.                         (run "delete SYS:WBStartup/DFA")
  80.                         (run "delete SYS:WBStartup/DFA.info")
  81.                     )
  82.                 )
  83.             )
  84.         )
  85.     )
  86.     (
  87.         (message
  88.             (    "No old version of DFA found!\nYou either don't have an old version installed, or it is on a place on your harddisk where it wasn't found.\n\nIf you have installed an old version of DFA anywhere on your system, please delete it manually or make sure that both versions don't run at the same time, as they are not compatible in some ways."
  89.             )
  90.         )
  91.     )
  92. )
  93.  
  94. (message
  95.     (    "*** DFA is SHAREWARE ***\n \nIf you use it regularly, please remember that you have to register!\n\nPlease notice that the amount of time the author is able to invest into DFA depends directly on the number of people who register.\nFor details about the registration, please read the documentation!\n\nEnjoy using DFA.\n\nDirk Federlein"
  96.     )
  97. )
  98.  
  99.  
  100. (set @default-dest "SYS:")
  101.  
  102. (complete 0)
  103.  
  104. ;
  105. ; Set the dir and archive name for the binaries
  106. ;
  107.  
  108. (set bindir "DFA/")
  109. (set binarchive "DFA/DFA-20.lha")
  110.  
  111.  
  112.     ; ************************
  113.     ; Install the DFA - Server
  114.     ; ************************
  115.  
  116.     ;
  117.     ; Select destination drawer
  118.     ;
  119.  
  120. (set serverdest
  121.     (askdir
  122.         (prompt "Please select a place for the DFA-Server executable")
  123.         (default "SYS:WBStartup")
  124.         (help    "Choose a destination partition or directory "
  125.                 "to contain the DFA-Server executable.  The install "
  126.                 "program copies the DFA-Server executable 'DFA' "
  127.                 "to the location you choose. "
  128.                 "No extra drawer will be created! "
  129.         )
  130.     )
  131. )
  132.  
  133.     ;
  134.     ; Extract executable from archive
  135.     ;
  136.  
  137. (working "Extracting DFA-Server executable from archive...")
  138.  
  139. (if (AND (NOT (= (substr serverdest (- (strlen serverdest) 1 ) 1 ) ":" ))
  140.     (NOT (= (substr serverdest (- (strlen serverdest) 1 ) 1 ) "/" )))
  141.     (
  142.             ;
  143.             ; Destination ends not in ":" or "/", append "/"
  144.             ;
  145.  
  146.         (set serverdest (cat serverdest "/"))
  147.     )
  148. )
  149.  
  150.     ;
  151.     ; Generate command string...
  152.     ;
  153.  
  154. (set cmdstring "c/lhx e ")
  155. (set cmdstring (cat cmdstring binarchive))
  156. (set cmdstring (cat cmdstring " DFA "))
  157. (set cmdstring (cat cmdstring serverdest))
  158.  
  159.     ;
  160.     ; ...and execute it
  161.     ;
  162.  
  163. (run cmdstring)
  164.  
  165.     ;
  166.     ; Copy .info file
  167.     ;
  168.  
  169. (set error
  170.     (trap 4
  171.         (copyfiles
  172.             (prompt "Installing DFA-Server Icon...")
  173.             (source (tackon bindir "DFA.info")) (dest serverdest)
  174.         )
  175.     )
  176. )
  177.  
  178. (if (> error 0)
  179.     (message ("Dos Error %ld detected" @ioerr))
  180. )
  181.  
  182. (complete 10)
  183.  
  184.  
  185.     ; ************************
  186.     ; Install the DFA - Editor
  187.     ; ************************
  188.  
  189.     ;
  190.     ; Select destination drawer
  191.     ;
  192.  
  193. (set editordest
  194.     (askdir
  195.         (prompt "Please select a place for the DFA-Editor executable")
  196.         (default "C:")
  197.         (help    "Choose a destination partition or directory "
  198.                 "to contain the DFA-Editor executable.  The install "
  199.                 "program copies the DFA-Editor executable 'DFAEditor' "
  200.                 "to the location you choose. "
  201.                 "No extra drawer will be created! "
  202.         )
  203.     )
  204. )
  205.  
  206.     ;
  207.     ; Extract executable from archive
  208.     ;
  209.  
  210. (working "Extracting DFA-Editor executable from archive...")
  211.  
  212. (if (AND (NOT (= (substr editordest (- (strlen editordest) 1 ) 1 ) ":" ))
  213.         (NOT (= (substr editordest (- (strlen editordest) 1 ) 1 ) "/" )))
  214.     (
  215.             ;
  216.             ; Destination ends not in ":" or "/", append "/"
  217.             ;
  218.  
  219.         (set editordest (cat editordest "/"))
  220.     )
  221. )
  222.  
  223. (set cmdstring (cat "c/lhx e " binarchive))
  224. (set cmdstring (cat cmdstring " DFAEditor "))
  225. (set cmdstring (cat cmdstring editordest))
  226.  
  227. (run cmdstring)
  228.  
  229.     ;
  230.     ; Copy .info file
  231.     ;
  232.  
  233. (set error
  234.     (trap 4
  235.         (copyfiles
  236.             (prompt "Installing DFA-Editor Icon...")
  237.             (source (tackon bindir "DFAEditor.info"))
  238.             (dest editordest)
  239.         )
  240.     )
  241. )
  242.  
  243. (if (> error 0)
  244.     (message ("Dos Error %ld detected" @ioerr))
  245. )
  246.  
  247. (complete 20)
  248.  
  249.     ; ***************************************
  250.     ; Install the DFA - Preferences - Program
  251.     ; ***************************************
  252.  
  253.     ;
  254.     ; Select destination drawer
  255.     ;
  256.  
  257. (set prefsdest
  258.     (askdir
  259.         (prompt "Please select a place for the DFA-Prefs executable")
  260.         (default "SYS:Prefs")
  261.         (help    "Choose a destination partition or directory "
  262.                 "to contain the DFA-Prefs executable.  The install "
  263.                 "program copies the DFA-Prefs executable 'DFAPrefs' "
  264.                 "to the location you choose. "
  265.                 "No extra drawer will be created! "
  266.         )
  267.     )
  268. )
  269.  
  270.     ;
  271.     ; Extract executable from archive
  272.     ;
  273.  
  274. (working "Extracting DFA-Prefs executable from archive...")
  275.  
  276. (if (AND (NOT (= (substr prefsdest (- (strlen prefsdest) 1 ) 1 ) ":" ))
  277.         (NOT (= (substr prefsdest (- (strlen prefsdest) 1 ) 1 ) "/" )))
  278.     (
  279.             ;
  280.             ; Destination ends not in ":" or "/", append "/"
  281.             ;
  282.  
  283.             (set prefsdest (cat prefsdest "/"))
  284.     )
  285. )
  286.  
  287. (set cmdstring (cat "c/lhx e " binarchive))
  288. (set cmdstring (cat cmdstring " DFAPrefs %s"))
  289.  
  290. (run cmdstring prefsdest)
  291.  
  292.     ;
  293.     ; Copy .info file
  294.     ;
  295.  
  296. (set error
  297.     (trap 4
  298.         (copyfiles
  299.             (prompt "Installing DFA-Editor Icon...")
  300.             (source (tackon bindir "DFAPrefs.info"))
  301.             (dest prefsdest)
  302.         )
  303.     )
  304. )
  305.  
  306. (if (> error 0)
  307.     (message ("Dos Error %ld detected" @ioerr))
  308. )
  309.  
  310. (complete 30)
  311.  
  312.     ; *************************
  313.     ; Install the DFA - Library
  314.     ; *************************
  315.  
  316.     ;
  317.     ; Select destination drawer
  318.     ;
  319.  
  320. (set libdest
  321.     (askdir
  322.         (prompt "Please select a place for the DFA-Library")
  323.         (default "LIBS:")
  324.         (help    "Choose a destination partition or directory "
  325.                 "to contain the DFA-Library.  The install "
  326.                 "program copies the DFA-Library 'dfa.library' "
  327.                 "to the location you choose. "
  328.                 "No extra drawer will be created! "
  329.         )
  330.     )
  331. )
  332.  
  333.     ;
  334.     ; Extract executable from archive
  335.     ;
  336.  
  337. (working "Extracting the DFA-Library from archive...")
  338.  
  339. (if (AND (NOT (= (substr libdest (- (strlen libdest) 1 ) 1 ) ":" ))
  340.         (NOT (= (substr libdest (- (strlen libdest) 1 ) 1 ) "/" )))
  341.     (
  342.             ;
  343.             ; Destination ends not in ":" or "/", append "/"
  344.             ;
  345.  
  346.         (set libdest (cat libdest "/"))
  347.     )
  348. )
  349.  
  350. (set cmdstring (cat "c/lhx e " binarchive))
  351. (set cmdstring (cat cmdstring " dfa.library %s"))
  352.  
  353. (run cmdstring libdest)
  354.  
  355. (complete 35)
  356.  
  357.     ; ********************
  358.     ; Install Locale files
  359.     ; ********************
  360.  
  361.     ;
  362.     ; Locale: drawer present ?
  363.     ;
  364.  
  365. (if (AND (NOT (= (getassign "Locale") "")) (exists "libs:locale.library"))
  366.     (
  367.         ;
  368.         ; Select language(s)
  369.         ;
  370.  
  371.         (set language
  372.             (askoptions
  373.                 (prompt "Which language(s) do you want to get installed?")
  374.                     (choices    "German" )
  375.  
  376.                 (help    "You may choose none, one or more languages. "
  377.                         "If you don't have an operation system that "
  378.                         "supports locale, please select no language "
  379.                         "at all. "
  380.                         "Locale support is given in Workbench 2.1 "
  381.                         "and above. "
  382.                         "Please note that English is the builtin "
  383.                         "language and does not need extra catalog "
  384.                         " files! "
  385.                 )
  386.             )
  387.         )
  388.  
  389.         ;
  390.         ; Copy catalogs
  391.         ;
  392.  
  393.         (if (IN language 0)
  394.             (
  395.             ;
  396.             ; German catalogs
  397.             ;
  398.  
  399.                 (copyfiles
  400.                     (source "Locale/Catalogs/Deutsch/DFA.catalog")
  401.                     (dest "Locale:catalogs/deutsch")
  402.                     (prompt "Installing catalog for the DFA-Server...")
  403.                 )
  404.  
  405.                 (copyfiles
  406.                     (source "Locale/Catalogs/Deutsch/DFAEditor.catalog")
  407.                     (dest "Locale:catalogs/deutsch")
  408.                     (prompt "Installing catalog for the DFA-Editor...")
  409.                 )
  410.  
  411.                 (copyfiles
  412.                     (source "Locale/Catalogs/Deutsch/DFAPrefs.catalog")
  413.                     (dest "Locale:catalogs/deutsch")
  414.                     (prompt "Installing catalog for the DFA-Preferences...")
  415.                 )
  416.                 (copyfiles
  417.                     (source "Locale/Catalogs/Deutsch/DFALib.catalog")
  418.                     (dest "Locale:catalogs/deutsch")
  419.                     (prompt "Installing catalog for the DFA-Library...")
  420.                 )
  421.             )
  422.         )
  423.     )
  424. )
  425.  
  426. (complete 40)
  427.  
  428.     ; *********************************
  429.     ; Install the example arexx scripts
  430.     ; *********************************
  431.  
  432. (set installrexx
  433.     (askbool
  434.         (prompt    "Do you want to install the example AREXX scripts?\n\n"
  435.                 "Please notice that Arexx scripts that you may "
  436.                 "have got together with DFA V1.x are NOT "
  437.                 "compatible to the new ones in some ways!\n\n"
  438.                 "For details about these Arexx scripts please "
  439.                 "read the documentation and look up the "
  440.                 "information given in the particular scripts. "
  441.         )
  442.         (help    "The sample ARexx scripts can give you an idea "
  443.                 "how to use DFA in connection to ARexx and e.g. "
  444.                 "the Cygnus Ed (by ADSG)."
  445.         )
  446.  
  447.         (default 0)
  448.     )
  449. )
  450.  
  451. (if (= installrexx 1)
  452.     (
  453.         (set rexxdest
  454.             (askdir
  455.                 (prompt "Select the directory where to install the ARexx scripts")
  456.                 (default "Rexx:")
  457.                 (help    "If you want to *use* the Arexx scripts at once, "
  458.                         "select an directory that is already within your "
  459.                         "Arexx search path."
  460.                 )
  461.             )
  462.         )
  463.  
  464.         (set error
  465.             (trap 4
  466.                 (copyfiles
  467.                     (source "rexx")
  468.                     (dest rexxdest)
  469.                     (all)
  470.                     (prompt "Installing the example AREXX scripts...")
  471.                 )
  472.             )
  473.         )
  474.  
  475.         (if (> error 0)
  476.             (message ("Dos Error %ld detected" @ioerr))
  477.         )
  478.     )
  479. )
  480.  
  481. (complete 45)
  482.  
  483.     ; ****************************************************
  484.     ; Copy Keyfile, if available (registered version only)
  485.     ; ****************************************************
  486.  
  487. (if (exists "s/DFA.key")
  488.     (
  489.         (set keydest
  490.             (askdir
  491.                 (prompt "Select the directory where to install the DFA keyfile")
  492.                 (default "S:")
  493.                 (help    "The DFA keyfile can be copied to any drawer. "
  494.                         "The default directory where the keyfile is "
  495.                         "copied to is 's:'."
  496.                         "If you select another drawer, the environment "
  497.                         "variable 'KEYPATH' is set accordingly."
  498.                 )
  499.             )
  500.         )
  501.  
  502.         (set error
  503.             (trap 4
  504.                 (copyfiles
  505.                     (source "S/DFA.key")
  506.                     (dest keydest)
  507.                     (prompt "Installing the DFA keyfile...")
  508.                 )
  509.             )
  510.         )
  511.  
  512.         (if (> error 0)
  513.             (message ("Dos Error %ld detected" @ioerr))
  514.         )
  515.     )
  516.  
  517.     (if (NOT (= keydest "s:")) || (NOT (= keydest "S:"))
  518.         (
  519.             (working "Setting environment variable 'KEYPATH'...")
  520.  
  521.             (run setenv "KEYPATH" keydest)
  522.             (run copy "Env:KEYPATH" "EnvArc:")
  523.  
  524.         )
  525.     )
  526. )
  527.  
  528. (complete 50)
  529.  
  530.     ; ********************************
  531.     ; Install the default address file
  532.     ; ********************************
  533.  
  534.  
  535. (set installadrfile
  536.     (askbool
  537.         (prompt    "Do you want to install the default address file (into s:) ?")
  538.         (help    "The default address file is named 'adr.file' and "
  539.                 "will be copied into the 's:' drawer. "
  540.                 "It contains the author's address which could be "
  541.                 "useful in some cases (Bug reports, Registration etc.) "
  542.                 "However, if you do already have such a file within "
  543.                 "your 's:' drawer you may not want to overwrite it. "
  544.         )
  545.     )
  546. )
  547.  
  548. (if (= installadrfile 1)
  549.     (
  550.         (if (exists "s:adr.file")
  551.             (
  552.                 (if (askbool
  553.                         (prompt "Be careful!\n "
  554.                                 "There already exists a file called 'adr.file' in the s: directory.\n "
  555.                                 "Do you really want to overwrite this file? \n"
  556.                         )
  557.                         (help "" )
  558.                     )
  559.                     (
  560.                         (set error
  561.                             (trap 4
  562.                                 (copyfiles (source "s/adr.file") (dest "s:") (infos) )
  563.                             )
  564.                         )
  565.  
  566.                         (if (> error 0)
  567.                             (message ("Dos Error %ld detected" @ioerr))
  568.                         )
  569.                     )
  570.                 )
  571.             )
  572.             (
  573.                 (set error
  574.                     (trap 4
  575.                         (copyfiles (source "s/adr.file") (dest "s:") (infos) )
  576.                     )
  577.                 )
  578.  
  579.                 (if (> error 0)
  580.                     (message ("Dos Error %ld detected" @ioerr))
  581.                 )
  582.             )
  583.         )
  584.     )
  585. )
  586.  
  587. (complete 55)
  588.  
  589.     ; *************************
  590.     ; Install the documentation
  591.     ; *************************
  592.  
  593.     ;
  594.     ; Get doc language
  595.     ;
  596.  
  597.  
  598. (set doclanguage
  599.     (askchoice
  600.         (prompt "Choose which documentation you want to get installed")
  601.         (choices    "English documentation"
  602.                     "German documentation"
  603.         )
  604.         (help    "You may either select the English or the German "
  605.                 "documentation. "
  606.         )
  607.         (default 0)
  608.     )
  609. )
  610.  
  611.     ;
  612.     ; Set documentation source directory
  613.     ;
  614.  
  615. (if (= doclanguage 0)
  616.     (
  617.             ;
  618.             ; English documentation
  619.             ;
  620.  
  621.         (set docsource "Documentation/english/")
  622.     )
  623.     (
  624.             ;
  625.             ; German documentation
  626.             ;
  627.  
  628.         (set docsource "Documentation/deutsch/")
  629.     )
  630. )
  631.  
  632.     ;
  633.     ; Part(s) of the documentation to be installed
  634.     ;
  635.  
  636. (set docparts
  637.     (askoptions
  638.         (prompt    "Choose the kind of documentation you would "
  639.                 "like to get installed"
  640.         )
  641.         (choices    "AmigaGuide documentation "
  642.                     "TeX documentation (.DVI file) "
  643.         )
  644.         (help    "The AmigaGuide documentation will only "
  645.                 "be usefull, if you have an amigaguide "
  646.                 "reader like 'Amigaguide' or 'Multiview' "
  647.                 "It _can_ be used for ONLINE help as well "
  648.                 "but you can used separate ONLINE help "
  649.                 "files for that purpose. "
  650.                 "They will be installed later on. "
  651.                 ""
  652.                 "The DVI file makes only sense if you have "
  653.                 "a TeX package or at least parts of it installed. "
  654.         )
  655.     )
  656. )
  657.  
  658.     ;
  659.     ; AmigaGuide documentation
  660.     ;
  661.  
  662. (if (IN docparts 0)
  663.     (
  664.         (set guidedocdest
  665.             (askdir
  666.                 (prompt "Select the location to install the Amigaguide documentation")
  667.                 (help    "Choose a destination partition or directory "
  668.                         "to contain the Amigaguide documentation. "
  669.                         "The install program will copy the Amigaguide documentation "
  670.                         "to this directory."
  671.                 )
  672.                 (default "Help:")
  673.             )
  674.         )
  675.  
  676.         (working "Extracting Amigaguide documentation from archive")
  677.  
  678.         (if (AND (NOT (= (substr guidedocdest (- (strlen guidedocdest) 1 ) 1 ) ":" ))
  679.             (NOT (= (substr guidedocdest (- (strlen guidedocdest) 1 ) 1 ) "/" )))
  680.             (
  681.                     ;
  682.                     ; Destination ends not in ":" or "/", append "/"
  683.                     ;
  684.  
  685.                 (set guidedocdest (cat guidedocdest "/"))
  686.             )
  687.         )
  688.  
  689.         (set cmdstring (cat "c/lhx e " (tackon docsource "Documentation.lha" )))
  690.         (set cmdstring (cat cmdstring " DFA.guide %s"))
  691.  
  692.         (run cmdstring guidedocdest)
  693.  
  694.             ;
  695.             ; Copy .info file
  696.             ;
  697.  
  698.         (set error
  699.             (trap 4
  700.                 (copyfiles
  701.                     (prompt "Installing Icon...")
  702.                     (source (tackon docsource "DFA.guide.info") (dest guidedocdest))
  703.                 )
  704.             )
  705.         )
  706.  
  707.         (if (> error 0)
  708.             (
  709.                 (message ("Dos Error %ld detected" @ioerr))
  710.             )
  711.             (
  712.                 (tooltype (dest (tackon guidedocdest "DFA.guide")) (noposition))
  713.             )
  714.         )
  715.     )
  716. )
  717.  
  718. (complete 65)
  719.  
  720.     ;
  721.     ; TeX documentation - DVI file
  722.     ;
  723.  
  724. (if (IN docparts 1)
  725.     (
  726.         (set texdocdest
  727.             (askdir
  728.                 (prompt "Select the location to install the TeX documentation")
  729.                 (help    "Choose a destination partition or directory "
  730.                         "to contain the TeX documentation. "
  731.                         "The install program will copy the TeX documentation "
  732.                         "to this directory."
  733.                 )
  734.                 (default "Work:")
  735.             )
  736.         )
  737.  
  738.         (working "Extracting TeX documentation from archive")
  739.  
  740.         (if (AND (NOT (= (substr texdocdest (- (strlen texdocdest) 1 ) 1 ) ":" ))
  741.             (NOT (= (substr texdocdest (- (strlen texdocdest) 1 ) 1 ) "/" )))
  742.             (
  743.                     ;
  744.                     ; Destination ends not in ":" or "/", append "/"
  745.                     ;
  746.  
  747.                 (set texdocdest (cat texdocdest "/"))
  748.             )
  749.         )
  750.  
  751.         (set cmdstring (cat "c/lhx e " (tackon docsource "Documentation.lha" )))
  752.         (set cmdstring (cat cmdstring " DFA.dvi %s"))
  753.  
  754.         (run cmdstring texdocdest)
  755.  
  756.             ;
  757.             ; Copy .info file
  758.             ;
  759.  
  760.         (set error
  761.             (trap 4
  762.                 (copyfiles
  763.                     (prompt "Installing Icon...")
  764.                     (source (tackon docsource "DFA.dvi.info") (dest texdocdest))
  765.                 )
  766.             )
  767.         )
  768.  
  769.         (if (> error 0)
  770.             (
  771.                 (message ("Dos Error %ld detected" @ioerr))
  772.             )
  773.             (
  774.                 (tooltype (dest (tackon texdocdest "DFA.dvi")) (noposition))
  775.             )
  776.         )
  777.     )
  778. )
  779.  
  780. (complete 75)
  781.  
  782.     ; ***********************
  783.     ; Install the online help
  784.     ; ***********************
  785.  
  786. (set onlineparts
  787.     (askchoice
  788.         (prompt    "You may choose the online help files you like "
  789.                 "to get installed. (select <HELP> for details!)"
  790.         )
  791.         (choices    "Big AmigaGuide documentation (160 KB) "
  792.                     "Small ONLINE help files (recommended!) "
  793.                     "No ONLINE help at all "
  794.         )
  795.         (help        "BIG Amigaguide documentation:\n"
  796.                     "This is the 'ordinary' AmigaGuide documentation "
  797.                     "If you've already installed it you may save some "
  798.                     "harddisk space if you select it. However, please "
  799.                     "don't forget that the complete file must be loaded "
  800.                     "into RAM, if the ONLINE help is envoced! "
  801.                     ""
  802.                     "Seperate ONLINE help files:\n"
  803.                     "These files are much smaller than the BIG "
  804.                     "documentation file. They need less RAM and "
  805.                     "are loaded much faster."
  806.                     "However they need some KB on your harddisk. "
  807.                     ""
  808.                     "No online help: \n"
  809.                     "If you don't need/like the ONLINE help feature, "
  810.                     "you may choose to select no ONLINE help file "
  811.                     "at all. But don't complain, if there doesn't "
  812.                     "pop up a help requester if you push <HELP>! "
  813.         )
  814.         (default 1)
  815.     )
  816. )
  817.  
  818. (if (= onlineparts 0)
  819.     (
  820.             ;
  821.             ; BIG AmigaGuide file
  822.             ;
  823.  
  824.             ;
  825.             ; ...already installed ?
  826.             ;
  827.  
  828.         (if (IN docparts 0)
  829.             (
  830.                     ;
  831.                     ; Set both help vars to the main guide file
  832.                     ;
  833.  
  834.                 (set editorhelp (tackon guidedocdest "DFA.guide"))
  835.                 (set prefshelp (tackon guidedocdest "DFA.guide"))
  836.             )
  837.             (
  838.                     ;
  839.                     ; Not installed -- do it now
  840.                     ;
  841.  
  842.                 (set guidedocdest
  843.                     (askdir
  844.                         (prompt "Select the location to install the Amigaguide documentation")
  845.                         (help    "Choose a destination partition or directory "
  846.                                 "to contain the Amigaguide documentation. "
  847.                                 "The install program will copy the Amigaguide documentation "
  848.                                 "to this directory."
  849.                         )
  850.                         (default "Help:")
  851.                     )
  852.                 )
  853.  
  854.                 (working "Extracting Amigaguide documentation from archive")
  855.  
  856.                 (if (AND (NOT (= (substr guidedocdest (- (strlen guidedocdest) 1 ) 1 ) ":" ))
  857.                     (NOT (= (substr guidedocdest (- (strlen guidedocdest) 1 ) 1 ) "/" )))
  858.                     (
  859.                             ;
  860.                             ; Destination ends not in ":" or "/", append "/"
  861.                             ;
  862.  
  863.                         (set guidedocdest (cat guidedocdest "/"))
  864.                     )
  865.                 )
  866.  
  867.                 (set cmdstring (cat "c/lhx e " (tackon docsource "Documentation.lha" )))
  868.                 (set cmdstring (cat cmdstring " DFA.guide %s"))
  869.  
  870.                 (run cmdstring guidedocdest)
  871.  
  872.                     ;
  873.                     ; Copy .info file
  874.                     ;
  875.  
  876.                 (set error
  877.                     (trap 4
  878.                         (copyfiles
  879.                             (prompt "Installing Icon...")
  880.                             (source (tackon docsource "DFA.guide.info") (dest guidedocdest))
  881.                         )
  882.                     )
  883.                 )
  884.  
  885.                 (if (> error 0)
  886.                     (
  887.                         (message ("Dos Error %ld detected" @ioerr))
  888.                     )
  889.                     (
  890.                         (tooltype (dest (tackon guidedocdest "DFA.guide")) (noposition))
  891.                     )
  892.                 )
  893.  
  894.                     ;
  895.                     ; Set both help vars to the main guide file
  896.                     ;
  897.  
  898.                 (set editorhelp (tackon guidedocdest "DFA.guide"))
  899.                 (set prefshelp (tackon guidedocdest "DFA.guide"))
  900.  
  901.             )
  902.         )
  903.     )
  904.     (
  905.         (if (= onlineparts 1)
  906.             (
  907.                     ;
  908.                     ; Special ONLINE help files
  909.                     ;
  910.  
  911.                 (if (= doclanguage 0)
  912.                     (
  913.                         ;
  914.                         ; english
  915.                         ;
  916.  
  917.                         (set onlinehelpdefdest "Help:English/")
  918.                     )
  919.                 )
  920.  
  921.                 (if (= doclanguage 1)
  922.                     (
  923.                         ;
  924.                         ; german
  925.                         ;
  926.  
  927.                         (set onlinehelpdefdest "Help:Deutsch/")
  928.                     )
  929.                 )
  930.  
  931.  
  932.                 (set onlinehelpdest
  933.                     (askdir
  934.                         (prompt "Select the location to install the ONLINE help")
  935.                         (help    "Choose a destination partition or directory "
  936.                                 "to contain the online help. "
  937.                                 "The install program will copy the online help files "
  938.                                 "to this directory."
  939.                         )
  940.                         (default onlinehelpdefdest)
  941.                     )
  942.                 )
  943.  
  944.                 (working "Extracting ONLINE help from archive")
  945.  
  946.                 (if (AND (NOT (= (substr onlinehelpdest (- (strlen onlinehelpdest) 1 ) 1 ) ":" ))
  947.                     (NOT (= (substr onlinehelpdest (- (strlen onlinehelpdest) 1 ) 1 ) "/" )))
  948.                     (
  949.                             ;
  950.                             ; Destination ends not in ":" or "/", append "/"
  951.                             ;
  952.  
  953.                         (set onlinehelpdest (cat onlinehelpdest "/"))
  954.                     )
  955.                 )
  956.  
  957.                 (set cmdstring (cat "c/lhx e " (tackon docsource "Documentation.lha" )))
  958.                 (set cmdstring (cat cmdstring " DFAEditor.guide %s"))
  959.  
  960.                 (run cmdstring onlinehelpdest)
  961.  
  962.                     ;
  963.                     ; Copy .info file
  964.                     ;
  965.  
  966.                 (set error
  967.                     (trap 4
  968.                         (copyfiles
  969.                             (prompt "Installing Icon...")
  970.                             (source (tackon docsource "DFAEditor.guide.info") (dest onlinehelpdest))
  971.                         )
  972.                     )
  973.                 )
  974.  
  975.                 (if (> error 0)
  976.                     (
  977.                         (message ("Dos Error %ld detected" @ioerr))
  978.                     )
  979.                     (
  980.                         (tooltype (dest (tackon onlinehelpdest "DFAEditor.guide")) (noposition))
  981.                     )
  982.                 )
  983.  
  984.                 (set cmdstring (cat "c/lhx e " (tackon docsource "Documentation.lha" )))
  985.                 (set cmdstring (cat cmdstring " DFAPrefs.guide %s"))
  986.  
  987.                 (run cmdstring onlinehelpdest)
  988.  
  989.                     ;
  990.                     ; Copy .info file
  991.                     ;
  992.  
  993.                 (set error
  994.                     (trap 4
  995.                         (copyfiles
  996.                             (prompt "Installing Icon...")
  997.                             (source (tackon docsource "DFAPrefs.guide.info") (dest onlinehelpdest))
  998.                         )
  999.                     )
  1000.                 )
  1001.  
  1002.                 (if (> error 0)
  1003.                     (
  1004.                         (message ("Dos Error %ld detected" @ioerr))
  1005.                     )
  1006.                     (
  1007.                         (tooltype (dest (tackon onlinehelpdest "DFAPrefs.guide")) (noposition))
  1008.                     )
  1009.                 )
  1010.  
  1011.                     ;
  1012.                     ; Set both help vars to the main guide file
  1013.                     ;
  1014.  
  1015.                 (set editorhelp (tackon onlinehelpdest "DFAEditor.guide"))
  1016.                 (set prefshelp (tackon onlinehelpdest "DFAPrefs.guide"))
  1017.  
  1018.             )
  1019.             (
  1020.                 (if (= onlineparts 2)
  1021.                     (
  1022.                             ;
  1023.                             ; NO ONLINE help
  1024.                             ;
  1025.  
  1026.                         (message    "You choosed not to install any online help "
  1027.                                     "at all. If you want to install it later, "
  1028.                                     "look in the Documentation.lha archive for "
  1029.                                     "the files 'DFAEditor.guide' and "
  1030.                                     "'DFAPrefs.guide'. Use the 'lhx'-utility "
  1031.                                     "from the 'c' directory to extract these "
  1032.                                     "files and read the documentation to learn "
  1033.                                     "how to set the corresponding tooltypes "
  1034.                                     "for the 'DFA-Editor' and the 'DFA_Prefs' "
  1035.                                     "program."
  1036.                         )
  1037.  
  1038.                         (set editorhelp "")
  1039.                         (set prefshelp "")
  1040.  
  1041.                     )
  1042.                 )
  1043.             )
  1044.         )
  1045.     )
  1046. )
  1047.  
  1048. (complete 85)
  1049.  
  1050.     ; **************************
  1051.     ; Install 3rd party software
  1052.     ; **************************
  1053.  
  1054.     ;
  1055.     ; Install OwndevUnit
  1056.     ;
  1057.  
  1058. (set installodu
  1059.     (askbool
  1060.         (prompt    "Do you want to install the OwnDevUnit.library\n"
  1061.                 "(Version 3.3)?")
  1062.         (help    "This library is only needed, if you want to "
  1063.                 "dial using DFA. Even then it is only needed, "
  1064.                 "if you are using programms like 'getty' that "
  1065.                 "sits on the serial device all the time.\n"
  1066.                 "In such a case the OwnDevUnit.library allows "
  1067.                 "DFA to signal the 'foreign' application that "
  1068.                 "it wants to use the serial device.\n "
  1069.                 "If it is not currently used, i.e. no data is "
  1070.                 "transferred, DFA gets the serial port for "
  1071.                 "dialing and returns it as soon as the dialing "
  1072.                 "job is completed."
  1073.         )
  1074.  
  1075.         (default 0)
  1076.     )
  1077. )
  1078.  
  1079. (if (= installodu 1)
  1080.     (
  1081.         (set odudest
  1082.             (askdir
  1083.                 (prompt "Select the directory where to install the OwnDevUnit.library")
  1084.                 (default "Libs:")
  1085.                 (help    "This library is only needed, if you want to "
  1086.                         "dial using DFA. Even then it is only needed, "
  1087.                         "if you are using programms like 'getty' that "
  1088.                         "sit on the serial device all the time.\n"
  1089.                         "In such a case the OwnDevUnit.library allows "
  1090.                         "DFA to signal the 'foreign' application that "
  1091.                         "it wants to use the serial device.\n"
  1092.                         "If it is not currently used, i.e. no data is "
  1093.                         "transferred, DFA gets the serial port for "
  1094.                         "dialing.\n"
  1095.                 )
  1096.             )
  1097.         )
  1098.  
  1099.         (set error
  1100.             (trap 4
  1101.                 (copylib
  1102.                     (source "libs/OwnDevUnit.library")
  1103.                     (dest odudest)
  1104.                     (confirm)
  1105.                     (optional)
  1106.                     (prompt "Installing the OwnDevUnit.Library...")
  1107.                     (help    "This library is only needed, if you want to "
  1108.                             "dial using DFA. Even then it is only needed, "
  1109.                             "if you are using programms like 'getty' that "
  1110.                             "sit on the serial device all the time.\n"
  1111.                             "In such a case the OwnDevUnit.library allows "
  1112.                             "DFA to signal the 'foreign' application that "
  1113.                             "it wants to use the serial device.\n"
  1114.                             "If it is not currently used, i.e. no data is "
  1115.                             "transferred, DFA gets the serial port for "
  1116.                             "dialing.\n"
  1117.                     )
  1118.                 )
  1119.             )
  1120.         )
  1121.  
  1122.         (if (> error 0)
  1123.             (message ("Dos Error %ld detected" @ioerr))
  1124.         )
  1125.     )
  1126. )
  1127.  
  1128. (complete 90)
  1129.  
  1130.     ; ******************
  1131.     ; Set some tooltypes
  1132.     ; ******************
  1133.  
  1134.     ;
  1135.     ; Tooltypes for the executables...
  1136.     ;
  1137.  
  1138. (message "Now several tooltypes are set:\n\n"
  1139.             "* To DFA:       - The path of the DFA-Editor program \n\n"
  1140.             "* To DFAEditor: - The path of the DFA-Prefs program  \n"
  1141.             "                - The path of the ONLINE help file   \n\n"
  1142.             "* To DFAPrefs:  - The path of the ONLINE help file   \n"
  1143. )
  1144.  
  1145. (tooltype (dest (tackon serverdest "DFA")) (settooltype ("DFAEDITOR") (tackon editordest "DFAEditor")))
  1146. (tooltype (dest (tackon editordest "DFAEditor")) (settooltype ("DFAPREFS") (tackon prefsdest "DFAPrefs")))
  1147. (tooltype (dest (tackon editordest "DFAEditor")) (settooltype ("GUIDEFILE") (editorhelp)))
  1148. (tooltype (dest (tackon prefsdest "DFAPrefs")) (settooltype ("GUIDEFILE") (prefshelp)))
  1149.  
  1150.     ;
  1151.     ; No reset all the icon positions...
  1152.     ;
  1153.  
  1154. (tooltype (dest (tackon serverdest "DFA")) (noposition))
  1155. (tooltype (dest (tackon editordest "DFAEditor")) (noposition))
  1156. (tooltype (dest (tackon prefsdest "DFAPrefs")) (noposition))
  1157.  
  1158.  
  1159. (complete 100)
  1160.  
  1161. (set EndMsg1 ("The DFA-Server program (DFA) can be found in\n%s\n" serverdest))
  1162. (set EndMsg3 ("The DFA-Editor is located in\n%s\n" editordest))
  1163. (set EndMsg2 ("and the DFA-Prefs program was copied to\n%s\n" prefsdest))
  1164.  
  1165. (exit EndMsg1 EndMsg2 EndMsg3 "\nHave fun using DFA\n (and don't forget that it's SHAREWARE)")
  1166.  
  1167.